home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / DELPHI32 / BUTTONS / MOVBUT10 / MOVBUT10.ZIP / movingbt.dpr < prev    next >
Text File  |  1996-07-17  |  235b  |  16 lines

  1. program Movingbt;
  2.  
  3. { Project file }
  4.  
  5. uses
  6.   Forms,
  7.   Butncode in 'BUTNCODE.PAS' {ButtonObject},
  8.   Movbut in 'MOVBUT.PAS';
  9.  
  10. {$R *.RES}
  11.  
  12. begin
  13.   Application.CreateForm(TButtonObject, ButtonObject);
  14.   Application.Run;
  15. end.
  16.